EventDumpRecorder Class

Description

事件转储录制器。

用于将一些关键诊断信息保存到EED文件中。

本类的所有成员都是线程安全的。

create

创建。

C

void easyar_EventDumpRecorder_create(easyar_EventDumpRecorder * * Return)

C++

static std::shared_ptr<EventDumpRecorder> create()

Java

public static @Nonnull EventDumpRecorder create()

Kotlin

companion object fun create(): EventDumpRecorder

Objective-C

+ (easyar_EventDumpRecorder *)create

Swift

public static func create() -> EventDumpRecorder

C#

public static EventDumpRecorder create()

start

开始录制。

C

bool easyar_EventDumpRecorder_start(easyar_EventDumpRecorder * This, easyar_String * filePath, int initalScreenRotation)

C++

bool start(std::string filePath, int initalScreenRotation)

Java

public boolean start(java.lang.@Nonnull String filePath, int initalScreenRotation)

Kotlin

fun start(filePath: String, initalScreenRotation: Int): Boolean

Objective-C

- (bool)start:(NSString *)filePath initalScreenRotation:(int)initalScreenRotation

Swift

public func start(_ filePath: String, _ initalScreenRotation: Int32) -> Bool

C#

public virtual bool start(string filePath, int initalScreenRotation)

stop

停止录制。

C

void easyar_EventDumpRecorder_stop(easyar_EventDumpRecorder * This)

C++

void stop()

Java

public void stop()

Kotlin

fun stop(): Unit

Objective-C

- (void)stop

Swift

public func stop() -> Void

C#

public virtual void stop()